home *** CD-ROM | disk | FTP | other *** search
-
-
- #ifndef _DXFONT_H_
- #define _DXFONT_H_
-
-
- //--------------------------------------------------------------------
- // Name: DXFONT Class
- // Desc: ************
- //--------------------------------------------------------------------
- class DXFONT
- {
- private:
-
- LPD3DXFONT Font ;
- RECT FontPosition;
-
- public:
-
- DXFONT();
- ~DXFONT();
-
- void Create(int Size,DWORD AtributeFlag,char *FontFace);
-
- void Print(int x,int y,COLOR Color,char *Text);
- void PrintCenter(int x,int y,COLOR Color,char *Text);
-
-
- };
-
-
-
-
-
- #endif //DXFONT
-